Change name to BigInt and rename files - #4
Merged
Conversation
There was a problem hiding this comment.
Pull request overview
Renames the library from Base256 to BigInt and updates the codebase/documentation to reflect the new 64-bit limb representation.
Changes:
- Renamed core type and build targets from
Base256toBigInt(sources, headers, CMake, tests). - Updated math utilities to operate on
BigIntand refreshed docs/README to match the limb-based representation. - Replaced the old
docs/base256.mdwith a newdocs/bigint.md.
Reviewed changes
Copilot reviewed 13 out of 13 changed files in this pull request and generated 3 comments.
Show a summary per file
| File | Description |
|---|---|
CMakeLists.txt |
Renames the top-level CMake project to BigInt. |
src/CMakeLists.txt |
Renames the library target to BigInt and updates source list. |
src/bigint.h |
Renames the main class and header guard to BigInt. |
src/bigint.cpp |
Updates implementation definitions to operations::BigInt. |
src/math_utils.h |
Switches math utility APIs to use BigInt. |
src/math_utils.cpp |
Updates math utility implementation types and internal helpers to limb-based naming. |
src/types.h |
Updates header guard to BigInt naming. |
src/helper.h |
Updates helper naming/comments to “limbs” terminology. |
tests/CMakeLists.txt |
Renames test executable/target and switches to test_bigint.cpp. |
tests/test_bigint.cpp |
Renames test cases and types from Base256 to BigInt. |
README.md |
Updates project name, usage examples, and documentation links for BigInt. |
docs/bigint.md |
Adds new BigInt documentation describing the limb-based representation. |
docs/base256.md |
Removes obsolete Base256 documentation. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Member
|
lgtm |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Describe your changes
Issue ticket number if there is one